home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Explorer ToolTips.xpl < prev    next >
Text File  |  2004-04-28  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Appearance\Interface\ToolTips/BalloonTips"
  5. "UIPATH 2"="Appearance\Desktop\Options"
  6. "UIPATH 3"="Appearance\Explorer\Settings"
  7. "NAME"="Explorer/Desktop ToolTip Options"
  8. "VERSION"="1.01"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Show ToolTips on Desktop and inside Explorer"
  11. "DESCRIPTION 1"="If this option is activated the Desktop and the Windows Explorer will display a ToolTip for various items. If deactivated, these ToolTips will not appear."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowInfoTip" 'DW
  19.  
  20.  
  21. Sub Plugin_Initialize 
  22.   i=RegReadValue(sV1)
  23.   if i=1 then SetUIElement 1,true
  24.  
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  b=GetUIElement(1)
  32.  if b=true then
  33.     Call RegWriteValue(sV1,1,2)
  34.  else
  35.     Call RegWriteValue(sV1,0,2)
  36.  end if
  37. End Sub
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.  
  42.